O volume da esfera pode ser representado usando uma tabela de valores

[Maple Math]

>

>

>

>

> with(plots):

[Maple Plot]

>

>

>

A Elipse [Maple Math]

> implicitplot(x^2/25+y^2/4 = 1,x=-6..6,y=-3..3);

[Maple Plot]

>

>

>

>

> plot(4/3*Pi*r^3,r=-4..4);

[Maple Plot]

>

>

>

a) [Maple Math] ( em vermelho ) b) [Maple Math] ( em verde )

> plot([-x^2,3*x-1],x=-4..4,y=-20..20);

[Maple Plot]

>

>

>

c) [Maple Math] ( em azul marinho ) b) [Maple Math] ( em verde )

> plot([sqrt(4-x^2),4],x=-2..2,y=-1..5,color=[cyan,green]);

[Maple Plot]

>

>

>

> piecewise(x<=2,4*x-6,x<5,2,x>=5,-4*x+22);

[Maple Math]

> plot(%,x=-3..10,y=-8..3);

[Maple Plot]

>

>

>

Lembre-se : g ( latas de tinta ) e h ( horas de trabalho do pintor )

> CT:=(g,h)->24*g+15*h;

[Maple Math]

> CT(12,18);

[Maple Math]

>

>

>

Lembre-se: a, b e c - medida dos lados

[Maple Math]

[Maple Math]

[Maple Math]

> s:=(a,b,c)->(a+b+c)/2;

[Maple Math]

> A:=(a,b,c)->sqrt((a+b+c)*((a+b+c)/2-a)*((a+b+c)/2-b)*((a+b+c)/2-c)/2);

[Maple Math]

> s(5,8,11);

[Maple Math]

> evalf(A(5,8,11));

[Maple Math]

>